Timestamped struct¶
Defined in
Namespace: System.Reactive
Assembly: System.Reactive.dll
Full name: System.Reactive.Timestamped<T>
Modifiers: public sealed
Summary¶
Represents value with a timestamp on it.
The timestamp typically represents the time the value was received, using an IScheduler's clock to obtain the current time.
Applies to
netstandard2.0
Class hierarchy
classDiagram
class Timestamped~T~
class IEquatable~Timestamped~T~~ {
<>
}
IEquatable~Timestamped~T~~ <|.. Timestamped~T~
Implements: IEquatable
Constructors¶
| Name | Summary |
|---|---|
| .ctor | Constructs a timestamped value. |
Properties¶
| Name | Summary |
|---|---|
| Value | Gets the value. |
| Timestamp | Gets the timestamp. |
Methods¶
| Name | Summary |
|---|---|
| Deconstruct | Deconstructs the timestamped value into a value and a timestamp. |
| Equals | Determines whether the current [Timestamped](# value has the same [Value](# and... |
| GetHashCode | Returns the hash code for the current [Timestamped](# value. |
| ToString | Returns a string representation of the current [Timestamped](# value. |
Operators¶
| Name | Summary |
|---|---|
| static op_Equality | Determines whether the two specified [Timestamped](# values have the same [Value](# and... |
| static op_Inequality | Determines whether the two specified [Timestamped](# values don't have the same [Value](# and... |